From 2e7e7b359f1f05e9249f488a8a970a393964bbb1 Mon Sep 17 00:00:00 2001 From: oliskoli Date: Thu, 31 Jul 2008 20:19:43 +0000 Subject: [PATCH] igo8: Fix signedness compiler warning. git-svn-id: http://gpsbabel.googlecode.com/svn/trunk@3318 f51c46e8-681c-474f-0cfe-069cfd0219fb --- gpsbabel/igo8.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gpsbabel/igo8.c b/gpsbabel/igo8.c index f02e8fa62..cb9576f65 100644 --- a/gpsbabel/igo8.c +++ b/gpsbabel/igo8.c @@ -291,7 +291,7 @@ unsigned int print_unicode(char *dst, const unsigned int dst_max_length, short * unsigned int ascii_to_unicode_2(char *dst, const unsigned int dst_max_length, const char *src) { short *unicode; - unsigned int len; + int len; unicode = cet_str_any_to_uni(src, &cet_cs_vec_ansi_x3_4_1968, &len); -- 2.30.2